Append a varying string to the current record of the default unit
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(varying_string), | intent(in) | :: | string | |||
integer, | intent(out), | optional | :: | iostat |
subroutine put_VS (string, iostat) type(varying_string), intent(in) :: string integer, intent(out), optional :: iostat call put(char(string), iostat) ! Finish end subroutine put_VS